From: Gianni Tedesco Date: Tue, 11 Jan 2011 18:55:24 +0000 (+0000) Subject: tools/python/pyxl: Un-muddle libxl_domain_(pause|unpause) wrappers X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~10931^2~4 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=61097895f03d0cb01a99f258098147ce163a9afa;p=xen.git tools/python/pyxl: Un-muddle libxl_domain_(pause|unpause) wrappers Signed-off-by: Gianni Tedesco Committed-by: Ian Jackson --- diff --git a/tools/python/xen/lowlevel/xl/xl.c b/tools/python/xen/lowlevel/xl/xl.c index 058e7d26f1..0dfad8b4c6 100644 --- a/tools/python/xen/lowlevel/xl/xl.c +++ b/tools/python/xen/lowlevel/xl/xl.c @@ -546,9 +546,9 @@ static PyMethodDef pyxl_methods[] = { "Shutdown a domain"}, {"domain_destroy", (PyCFunction)pyxl_domain_destroy, METH_VARARGS, "Destroy a domain"}, - {"domain_pause", (PyCFunction)pyxl_domain_unpause, METH_VARARGS, + {"domain_pause", (PyCFunction)pyxl_domain_pause, METH_VARARGS, "Pause a domain"}, - {"domain_unpause", (PyCFunction)pyxl_domain_pause, METH_VARARGS, + {"domain_unpause", (PyCFunction)pyxl_domain_unpause, METH_VARARGS, "Unpause a domain"}, {"domain_rename", (PyCFunction)pyxl_domain_rename, METH_VARARGS, "Rename a domain"},